Konum Bilgilerini String olarak kullanma.
27.05.2014 - 12:54
LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
double longitude = location.getLongitude();
double latitude = location.getLatitude();
final WebView checkbrowser = (WebView) findViewById(R.id.webView2);
checkbrowser.getSettings().setJavaScriptEnabled(true);
checkbrowser.loadUrl("http://www.sitem.com/lokasyon.asp?long=" + longitude );
Bu şekilde kullandığımda hata alıyorum, yapmak istediğim sitem.com/lokasyon.asp?long= kısmına longitude değerini göndermek. Nasıl yapabilirim ?
Teşekkürler.
8
Görüntülenme
0 Beğeni